net/http.http2stream.state (field)

16 uses

	net/http (current package)
		h2_bundle.go#L4301: 	state            http2streamState
		h2_bundle.go#L4325: 		return st.state, st
		h2_bundle.go#L4872: 		switch st.state {
		h2_bundle.go#L4929: 		switch st.state {
		h2_bundle.go#L4941: 			st.state = http2stateHalfClosedLocal
		h2_bundle.go#L5245: 	if st.state == http2stateIdle || st.state == http2stateClosed {
		h2_bundle.go#L5246: 		panic(fmt.Sprintf("invariant; can't close stream in state %v", st.state))
		h2_bundle.go#L5248: 	st.state = http2stateClosed
		h2_bundle.go#L5502: 	st.state = http2stateHalfClosedRemote
		h2_bundle.go#L5551: 		if st.state == http2stateHalfClosedRemote {
		h2_bundle.go#L5699: 		state:     state,
		h2_bundle.go#L5981: 	if st.state != http2stateHalfClosedRemote && st.state != http2stateClosed {
		h2_bundle.go#L6588: 	if msg.parent.state != http2stateOpen && msg.parent.state != http2stateHalfClosedRemote {